home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / DEMOS / SMOOTH / Makefile < prev    next >
Encoding:
Makefile  |  1998-08-12  |  548 b   |  24 lines

  1. # Makefile for Win32
  2.  
  3. !include <win32.mak>
  4.  
  5. TOP  = ../../..
  6. SRCS = smooth.c
  7.  
  8. !include "$(TOP)/glutwin32.mak"
  9.  
  10. trackball.c: ..\..\examples\trackball.c
  11.     -del /f trackball.c
  12.     copy ..\..\examples\trackball.c trackball.c
  13.  
  14. trackball.h: ..\..\examples\trackball.h
  15.     -del /f trackball.h
  16.     copy ..\..\examples\trackball.h trackball.h
  17.  
  18. # dependencies
  19. smooth.exe    : tb.obj trackball.obj glm.obj gltx.obj
  20. smooth.obj    : glm.h smooth.c tb.h
  21. glm.obj         : glm.c glm.h
  22. tb.obj        : tb.c tb.h trackball.h
  23. trackball.obj    : trackball.c trackball.h
  24.